32. Solutions: Arithmetic Operators
Solutions to Arithmetic Operator Questions
SELECT id, account_id, standard_amt_usd/standard_qty AS unit_price FROM orders LIMIT 10;
SELECT id, account_id,
poster_amt_usd/(standard_amt_usd + gloss_amt_usd + poster_amt_usd) AS post_per
FROM orders
LIMIT 10;
Code
If you need a code on the https://github.com/udacity.